home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Tool Chest / Development Kits / MPW etc. / MPW-GM / MPW / Examples / CExamples / SillyBalls.make < prev    next >
Encoding:
Text File  |  1995-09-21  |  1.5 KB  |  46 lines  |  [TEXT/MPS ]

  1. #
  2. #    Macintosh Developer Technical Support
  3. #
  4. #    Simple Color QuickDraw Sample Application
  5. #
  6. #    SillyBalls
  7. #
  8. #    SillyBalls.make    -    Make Source
  9. #
  10. #    Copyright © 1988, 1995 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    1.0                    8/88
  14. #                1.01                4/91    Updated for MPW 3.2
  15. #
  16. #    Components:    SillyBalls.c        August 1, 1988
  17. #                SillyBalls.make        August 1, 1988
  18. #
  19. #    This is a very simple sample program that demonstrates how to use Color 
  20. #    QuickDraw.  It is about two pages of code, and does nothing more than open
  21. #    a color window and draw randomly colored ovals in the window.
  22. #    
  23. #    The purpose is to show how to get some initial results with Color QuickDraw.
  24. #    It is a complete program and is very short to be as clear as possible.
  25. #    
  26. #    It does not have an Event Loop.  It is not fully functional in the sense that
  27. #    it does not do all the things you would expect a well behaved Macintosh 
  28. #    program to do, like size the window naturally, have an event loop, use menus, 
  29. #    etc.
  30. #
  31. #    See Sample and TESample for the general structure and MultiFinder techniques that
  32. #    we recommend that you use when building a new application.
  33. #
  34. # MPW 3.0 and later: We override the default COptions to turn on strict prototyping;
  35. #    add '-proto strict' to your UserStartup when you tire of the warning from Make.
  36.  
  37. COptions = -proto strict -w 17
  38.  
  39. Objs        =    SillyBalls.c.o ∂
  40.                 "{Libraries}"Interface.o ∂
  41.                 "{Libraries}"MacRuntime.o 
  42.  
  43. SillyBalls    ƒ    {Objs} SillyBalls.make
  44.     Link -o {Targ} {Objs}
  45.     SetFile {Targ} -t APPL -c '????'
  46.